home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / c / qtools0.2-src.lha / src / libqbuild / nodraw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-07-13  |  674 b   |  26 lines

  1. #ifndef    DRAW_H
  2. #define    DRAW_H
  3.  
  4. /* draw.c */
  5.  
  6. /*============================================================================= */
  7.  
  8. /*============================================================================= */
  9.  
  10. void Draw_Init(void);
  11. void DrawBrush(struct brush *b);
  12. void DrawLeaf(struct node *l, int color);
  13. void DrawPoint(vec3_t v);
  14. void DrawPortal(struct portal *portal);
  15. void DrawTri(vec3_t p1, vec3_t p2, vec3_t p3);
  16. void DrawWinding(struct winding *w);
  17. void Draw_AddToBounds(vec3_t v);
  18. void Draw_ClearBounds(void);
  19. void Draw_ClearWindow(void);
  20. void Draw_DrawFace(struct visfacet *f);
  21. void Draw_SetBlack(void);
  22. void Draw_SetGrey(void);
  23. void Draw_SetRed(void);
  24.  
  25. #endif
  26.